home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Commands / PPolygonVertices.h < prev    next >
C/C++ Source or Header  |  1996-07-16  |  843b  |  32 lines

  1. /*
  2.  *--- PPolygonVertices.h ----------------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 3:29 PM by Paul Ferguson.
  5.  *
  6.  *  Description: This class is a little different than most other commands.
  7.  * The class client must create a complete PRequestBuf object and pass it
  8.  * into the constructor.  Refer to the SDK Guide for information about the
  9.  * format of the PPolygonVertices command parameters.
  10.  *-------------------------------------------------------------------------
  11.  */
  12. #ifndef __PPolygonVertices__
  13. #define __PPolygonVertices__
  14.  
  15. class PRequestBuf;
  16.  
  17. class PPolygonVertices
  18. {
  19.  
  20. public:
  21.  
  22.     PPolygonVertices(PRequestBuf& request);
  23.  
  24. private:
  25.  
  26.     PPolygonVertices();
  27. };
  28.  
  29. #endif
  30.  
  31. // end of PPolygonVertices.h
  32.